github.com/jackc/pgx/v5/pgconn.Pipeline.state (field)

28 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		pgconn.go#L1833: 			rr.pipeline.state.HandleError(pgErr)
		pgconn.go#L2195: 	state  pipelineState
		pgconn.go#L2362: 		pipeline.state.Init()
		pgconn.go#L2373: 	pgConn.pipeline.state.Init()
		pgconn.go#L2400: 	p.state.PushBackRequestType(pipelinePrepare)
		pgconn.go#L2410: 	p.state.PushBackRequestType(pipelineDeallocate)
		pgconn.go#L2423: 	p.state.PushBackRequestType(pipelineQueryParams)
		pgconn.go#L2435: 	p.state.PushBackRequestType(pipelineQueryPrepared)
		pgconn.go#L2446: 	p.state.PushBackRequestType(pipelineQueryStatement)
		pgconn.go#L2447: 	p.state.PushBackStatementData(statementDescription, resultFormats)
		pgconn.go#L2463: 	p.state.PushBackRequestType(pipelineFlushRequest)
		pgconn.go#L2478: 	p.state.PushBackRequestType(pipelineSyncRequest)
		pgconn.go#L2503: 	p.state.RegisterSendingToServer()
		pgconn.go#L2535: 	currentRequestType := p.state.ExtractFrontRequestType()
		pgconn.go#L2577: 		p.state.HandleError(pgErr)
		pgconn.go#L2601: 		p.state.HandleError(pgErr)
		pgconn.go#L2642: 	sd, resultFormats := p.state.ExtractFrontStatementData()
		pgconn.go#L2674: 		p.state.HandleError(pgErr)
		pgconn.go#L2693: 		p.state.HandleError(pgErr)
		pgconn.go#L2709: 		p.state.HandleReadyForQuery()
		pgconn.go#L2713: 		p.state.requestEventQueue.PushFront(pipelineRequestEvent{RequestType: pipelineSyncRequest, WasSentToServer: true, BeforeFlushOrSync: true})
		pgconn.go#L2716: 		p.state.HandleError(pgErr)
		pgconn.go#L2735: 		p.state.HandleError(pgErr)
		pgconn.go#L2753: 		p.state.HandleError(pgErr)
		pgconn.go#L2779: 		p.state.HandleError(pgErr)
		pgconn.go#L2801: 		p.state.HandleError(pgErr)
		pgconn.go#L2841: 	if p.state.PendingSync() {
		pgconn.go#L2850: 	for p.state.ExpectedReadyForQuery() > 0 {